home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-05-08 | 387 b | 30 lines | [TEXT/CWIE] |
- /*
- Simple.r
- */
-
- #include <Types.r>
-
- #define eConsoleApp 1
- #define eToolboxApp 2
-
- type 'MCFG' {
- /* steve says, add a version number. */
- integer; /* type of application. */
- };
-
- #if 1
- resource 'MCFG' (128, "Mindy Configuration") {
- eToolboxApp
- };
- #endif
-
- type 'OBJS' as 'STR#';
-
- resource 'OBJS' (128, "Mindy Objects") {
- {
- "SimpleLib.dbc",
- "Toolbox.dbc",
- "Simple.dbc",
- };
- };
-